home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000038_news@columbia.edu _Wed Aug 11 09:47:19 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA22606
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 11 Aug 1999 09:47:18 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA09102
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 11 Aug 1999 09:44:52 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Permission Denied msg with Windows
  11. Date: 11 Aug 1999 13:44:51 GMT
  12. Organization: Columbia University
  13. Message-ID: <7oruoj$8sb$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <7ort79$63o$1@nnrp1.deja.com>,
  17. quertyq@hotmail.com  <quertyq@hotmail.com> wrote:
  18. : Good morning everyone.  I am getting a "Permission Denied" message with
  19. : aKermit xfer using Windows. What am I doing wrong?  I have 2 computers
  20. : thathave Kermit 95 version 1117 installed on them.  Computer A Computer
  21. : B Windows 95 PC Windows 98 PC - dial USR modem - Kermit running in
  22. : servermode - when connected, do: on COM1 ( modem port ) get
  23. : /tmp/file.out/tmp/file.out...
  24. :
  25. It's a little hard to decipher your message -- spaces seem to be missing
  26. here and there.  You mean:
  27.  
  28.   get /tmp/file.out /tmp/file.out
  29.  
  30. ???
  31.  
  32. : - hangup the connection I am writing a polling
  33. : program. Computer B's code is as following: set carrier off set line com1
  34. : setbaud 57600 set block 3 set send pack 256 set rec pack 256 set window10
  35. : server Computer A dials to computer B ( both are using USR modems ) Computer
  36. : A does a "get" file xfer from Computer B to Computer A. Computer A
  37. : disconnects with the "hangup" command. The first time is successful.
  38. : Computer A dials and connects to computer B. Computer A does a "get"
  39. : filexfer from Computer B to Computer A. Computer A returns a Permission
  40. : Deniedmessage and cannot xfer the file.
  41. :
  42. This probably means that Windows has the file open.  Windows doesn't let
  43. you delete files that are open.
  44.  
  45. : The value \v(xfermsg) is
  46. : "PermissionDenied". The file is still on Computer B, and the attributes
  47. : have notchanged.  Computer A has the setting "SET FILE COLLISION
  48. : OVERWRITE". Whatcould I be doing to get a "permissions" message?
  49. Find out why the file is open and adjust your procedure so it does not try
  50. to replace open files.
  51.  
  52. - Frank